home *** CD-ROM | disk | FTP | other *** search
/ QuickTime VR Showcase / QuickTime VR Showcase.iso / 3rd Parties / Software / Apple / AMT 2.1 New Features Demo / SOURCES / oMore_Features_2_13.k < prev    next >
Encoding:
Text File  |  1996-12-21  |  14.6 KB  |  705 lines  |  [TEXT/MPS ]

  1. object oMore_Features_2_13 is cDefaultContainer
  2. with
  3.     Binder is oBinder;
  4.     Label is -1;
  5.     Items is [
  6.         oKeyboard_Volume__13_49,
  7.         oMF_BCK2_PIC_13_11,
  8.         oExit_Inverse_13_14,
  9.         oClick_Sound__Up__13_15,
  10.         oClick_Sound__down__13_16,
  11.         oArrow_Right_Yellow_Highligh_13_17,
  12.         oArrow_Left_Yellow_Highlight_13_18,
  13.         oExit_Yellow_Highlight_13_19,
  14.         oExplain_Yellow_Highlight_13_37,
  15.         oMenu_Yellow_Highlight_13_21,
  16.         oArrow_Left_Inverse_13_22,
  17.         oArrow_Right_Inverse_13_23,
  18.         oExplain_Inverse_13_24,
  19.         oMenu_Inverse_13_25,
  20.         oMF_MIAM_PIC_13_26,
  21.         oMF_SOFL_RTF_13_28,
  22.         oMF_SCDW_PIC_13_40,
  23.         oMF_SCUP_PIC_13_39,
  24.         oMF_SCMI_PIC_13_42,
  25.         oMF_PRNT_PIC_13_38,
  26.         oMF_HLP2_PIC_13_43
  27.     ];
  28. end;
  29.  
  30.  
  31. object oKeyboard_Volume__13_49 is cKeyboardHandler
  32. with
  33.     Behavior is cDefaultBehavior
  34.     has
  35.         KeyDown(theTarget, theKey)
  36.         use
  37.             KeyMatch;
  38.             
  39.             do
  40.                 KeyMatch := theKey = '-';
  41.                 if KeyMatch then
  42.                     theTarget.DoDefaultMethod := false;
  43.                 
  44.                     oSoundVolume.StepIndexBy(-1);
  45.                 end;
  46.                 KeyMatch := theKey = '=';
  47.                 if KeyMatch then
  48.                     theTarget.DoDefaultMethod := false;
  49.                 
  50.                     oSoundVolume.StepIndexBy(1);
  51.                 end;
  52.                 KeyMatch := theKey = '+';
  53.                 if KeyMatch then
  54.                     theTarget.DoDefaultMethod := false;
  55.                 
  56.                     oSoundVolume.StepIndexBy(1);
  57.                 end;
  58.             end;
  59.         
  60.     with
  61.         Enabled is true; Shown is false; 
  62.         X is 30; Y is 24; Width is 0; Height is 0;
  63.     end;
  64. end;
  65.  
  66.  
  67. object oMF_BCK2_PIC_13_11 is cPictureHandler
  68. with
  69.     Duration is -1;
  70.     Supplier is oMF_BCK2_PIC;
  71.     Behavior is cDefaultBehavior
  72.     has
  73.     with
  74.         Enabled is false; Shown is true; 
  75.         X is 0; Y is 0; Width is 640; Height is 480;
  76.     end;
  77. end;
  78.  
  79.  
  80. object oExit_Inverse_13_14 is cPictureHandler
  81. with
  82.     Duration is -1;
  83.     Supplier is oS2_ETI_PIC;
  84.     Behavior is cDefaultBehavior
  85.     has
  86.         Offscreen(theTarget)
  87.             do
  88.                 theTarget.Show(false);
  89.                 theTarget.Enable(false);
  90.             end;
  91.         
  92.     with
  93.         Enabled is true; Shown is true; 
  94.         X is 528; Y is 439; Width is 112; Height is 42;
  95.     end;
  96. end;
  97.  
  98.  
  99. object oClick_Sound__Up__13_15 is cSoundHandler
  100. with
  101.     Supplier is oS3_2clk_WAV;
  102.     Behavior is cDefaultBehavior
  103.     has
  104.     with
  105.         Enabled is true; Shown is true; 
  106.         X is 247; Y is 128; Width is 32; Height is 24;
  107.     end;
  108. end;
  109.  
  110.  
  111. object oClick_Sound__down__13_16 is cSoundHandler
  112. with
  113.     Supplier is oS3_clk_WAV;
  114.     Behavior is cDefaultBehavior
  115.     has
  116.     with
  117.         Enabled is true; Shown is true; 
  118.         X is 304; Y is 228; Width is 32; Height is 24;
  119.     end;
  120. end;
  121.  
  122.  
  123. object oArrow_Right_Yellow_Highligh_13_17 is cPictureHandler
  124. with
  125.     Duration is -1;
  126.     Supplier is oS2_ALYH_PIC;
  127.     Behavior is cDefaultBehavior
  128.     has
  129.         Offscreen(theTarget)
  130.             do
  131.                 theTarget.Show(false);
  132.             end;
  133.         
  134.         MouseEnter(theTarget, theX, theY)
  135.             do
  136.                 theTarget.Show(true);
  137.             end;
  138.         
  139.         MouseLeave(theTarget, theX, theY)
  140.             do
  141.                 theTarget.Show(false);
  142.             end;
  143.         
  144.         MouseDown(theTarget, theX, theY)
  145.             do
  146.                 theTarget.Show(false);
  147.                 oArrow_Right_Inverse_13_23.Show(true);
  148.                 -- Turn off the spining cursor, if there is one
  149.                 if oBinder.MouseSpin<>void then
  150.                     if oBinder.MouseSpin.IsRunning() then
  151.                         oBinder.MouseSpin.Stop();
  152.                     end;
  153.                     oBinder.MouseSpin := void;
  154.                 end;
  155.                 theTarget.Container.OverrideCursor := true;
  156.                 oBinder.MouseSpin := oHandSpin;
  157.                 if (oBinder.MouseSpin @ 1).Data=void then
  158.                     oBinder.MouseSpin.EachUp(Load);
  159.                 end;
  160.                 if not oBinder.MouseSpin.IsRunning() then
  161.                     oBinder.MouseSpin.Start();
  162.                 end;
  163.                 oBinder.Refresh();
  164.                 oClick_Sound__down__13_16.Run(true);
  165.             end;
  166.         
  167.         MouseUp(theTarget, theX, theY)
  168.             do
  169.                 theTarget.Show(true);
  170.                 oArrow_Right_Inverse_13_23.Show(false);
  171.                 -- Turn off the spining cursor, if there is one
  172.                 if oBinder.MouseSpin<>void then
  173.                     if oBinder.MouseSpin.IsRunning() then
  174.                         oBinder.MouseSpin.Stop();
  175.                     end;
  176.                     oBinder.MouseSpin := void;
  177.                 end;
  178.                 theTarget.Container.OverrideCursor := false;
  179.                 oBinder.Refresh();
  180.                 oClick_Sound__Up__13_15.Run(true);
  181.                 oBinder.Goto(oMore_Features_3_17);
  182.                 oBinder.SetTransition(oWipeRight, 30);
  183.             end;
  184.         
  185.     with
  186.         Enabled is true; Shown is true; 
  187.         X is 473; Y is 426; Width is 55; Height is 54;
  188.     end;
  189. end;
  190.  
  191.  
  192. object oArrow_Left_Yellow_Highlight_13_18 is cPictureHandler
  193. with
  194.     Duration is -1;
  195.     Supplier is oS2_ARYH_PIC;
  196.     Behavior is cDefaultBehavior
  197.     has
  198.         Offscreen(theTarget)
  199.             do
  200.                 theTarget.Show(false);
  201.             end;
  202.         
  203.         MouseEnter(theTarget, theX, theY)
  204.             do
  205.                 theTarget.Show(true);
  206.             end;
  207.         
  208.         MouseLeave(theTarget, theX, theY)
  209.             do
  210.                 theTarget.Show(false);
  211.             end;
  212.         
  213.         MouseDown(theTarget, theX, theY)
  214.             do
  215.                 theTarget.Show(false);
  216.                 oArrow_Left_Inverse_13_22.Show(true);
  217.                 -- Turn off the spining cursor, if there is one
  218.                 if oBinder.MouseSpin<>void then
  219.                     if oBinder.MouseSpin.IsRunning() then
  220.                         oBinder.MouseSpin.Stop();
  221.                     end;
  222.                     oBinder.MouseSpin := void;
  223.                 end;
  224.                 theTarget.Container.OverrideCursor := true;
  225.                 oBinder.MouseSpin := oHandSpin;
  226.                 if (oBinder.MouseSpin @ 1).Data=void then
  227.                     oBinder.MouseSpin.EachUp(Load);
  228.                 end;
  229.                 if not oBinder.MouseSpin.IsRunning() then
  230.                     oBinder.MouseSpin.Start();
  231.                 end;
  232.                 oBinder.Refresh();
  233.                 oClick_Sound__down__13_16.Run(true);
  234.             end;
  235.         
  236.         MouseUp(theTarget, theX, theY)
  237.             do
  238.                 theTarget.Show(true);
  239.                 oArrow_Left_Inverse_13_22.Show(false);
  240.                 -- Turn off the spining cursor, if there is one
  241.                 if oBinder.MouseSpin<>void then
  242.                     if oBinder.MouseSpin.IsRunning() then
  243.                         oBinder.MouseSpin.Stop();
  244.                     end;
  245.                     oBinder.MouseSpin := void;
  246.                 end;
  247.                 theTarget.Container.OverrideCursor := false;
  248.                 oBinder.Refresh();
  249.                 oClick_Sound__Up__13_15.Run(true);
  250.                 oBinder.Goto(oMore_Features_1_12);
  251.                 oBinder.SetTransition(oWipeRight, 30);
  252.             end;
  253.         
  254.     with
  255.         Enabled is true; Shown is true; 
  256.         X is 377; Y is 426; Width is 60; Height is 54;
  257.     end;
  258. end;
  259.  
  260.  
  261. object oExit_Yellow_Highlight_13_19 is cPictureHandler
  262. with
  263.     Duration is -1;
  264.     Supplier is oS2_ETYH_PIC;
  265.     Behavior is cDefaultBehavior
  266.     has
  267.         Offscreen(theTarget)
  268.             do
  269.                 theTarget.Show(false);
  270.             end;
  271.         
  272.         MouseEnter(theTarget, theX, theY)
  273.             do
  274.                 theTarget.Show(true);
  275.             end;
  276.         
  277.         MouseLeave(theTarget, theX, theY)
  278.             do
  279.                 theTarget.Show(false);
  280.             end;
  281.         
  282.         MouseDown(theTarget, theX, theY)
  283.             do
  284.                 theTarget.Show(false);
  285.                 oExit_Inverse_13_14.Show(true);
  286.                 -- Turn off the spining cursor, if there is one
  287.                 if oBinder.MouseSpin<>void then
  288.                     if oBinder.MouseSpin.IsRunning() then
  289.                         oBinder.MouseSpin.Stop();
  290.                     end;
  291.                     oBinder.MouseSpin := void;
  292.                 end;
  293.                 theTarget.Container.OverrideCursor := true;
  294.                 oBinder.MouseSpin := oHandSpin;
  295.                 if (oBinder.MouseSpin @ 1).Data=void then
  296.                     oBinder.MouseSpin.EachUp(Load);
  297.                 end;
  298.                 if not oBinder.MouseSpin.IsRunning() then
  299.                     oBinder.MouseSpin.Start();
  300.                 end;
  301.                 oBinder.Refresh();
  302.                 oClick_Sound__down__13_16.Run(true);
  303.             end;
  304.         
  305.         MouseUp(theTarget, theX, theY)
  306.             do
  307.                 theTarget.Show(true);
  308.                 oExit_Inverse_13_14.Show(false);
  309.                 -- Turn off the spining cursor, if there is one
  310.                 if oBinder.MouseSpin<>void then
  311.                     if oBinder.MouseSpin.IsRunning() then
  312.                         oBinder.MouseSpin.Stop();
  313.                     end;
  314.                     oBinder.MouseSpin := void;
  315.                 end;
  316.                 theTarget.Container.OverrideCursor := false;
  317.                 oBinder.Refresh();
  318.                 oClick_Sound__Up__13_15.Run(true);
  319.                 oBinder.Quit();
  320.             end;
  321.         
  322.     with
  323.         Enabled is true; Shown is true; 
  324.         X is 528; Y is 426; Width is 111; Height is 54;
  325.     end;
  326. end;
  327.  
  328.  
  329. object oExplain_Yellow_Highlight_13_37 is cPictureHandler
  330. with
  331.     Duration is -1;
  332.     Supplier is oS2_EXYH_PIC;
  333.     Behavior is cDefaultBehavior
  334.     has
  335.         Offscreen(theTarget)
  336.             do
  337.                 theTarget.Show(false);
  338.             end;
  339.         
  340.         MouseEnter(theTarget, theX, theY)
  341.             do
  342.                 theTarget.Show(true);
  343.             end;
  344.         
  345.         MouseLeave(theTarget, theX, theY)
  346.             do
  347.                 theTarget.Show(false);
  348.                 -- Turn off the spining cursor, if there is one
  349.                 if oBinder.MouseSpin<>void then
  350.                     if oBinder.MouseSpin.IsRunning() then
  351.                         oBinder.MouseSpin.Stop();
  352.                     end;
  353.                     oBinder.MouseSpin := void;
  354.                 end;
  355.                 theTarget.Container.OverrideCursor := false;
  356.             end;
  357.         
  358.         MouseDown(theTarget, theX, theY)
  359.             do
  360.                 theTarget.Show(false);
  361.                 oExplain_Inverse_13_24.Show(true);
  362.                 -- Turn off the spining cursor, if there is one
  363.                 if oBinder.MouseSpin<>void then
  364.                     if oBinder.MouseSpin.IsRunning() then
  365.                         oBinder.MouseSpin.Stop();
  366.                     end;
  367.                     oBinder.MouseSpin := void;
  368.                 end;
  369.                 theTarget.Container.OverrideCursor := true;
  370.                 oBinder.MouseSpin := oHandSpin;
  371.                 if (oBinder.MouseSpin @ 1).Data=void then
  372.                     oBinder.MouseSpin.EachUp(Load);
  373.                 end;
  374.                 if not oBinder.MouseSpin.IsRunning() then
  375.                     oBinder.MouseSpin.Start();
  376.                 end;
  377.                 oBinder.Refresh();
  378.                 oClick_Sound__down__13_16.Run(true);
  379.                 oMF_HLP2_PIC_13_43.Show(not oMF_HLP2_PIC_13_43.IsShown());
  380.                 oMF_SOFL_RTF_13_28.Enable(not oMF_SOFL_RTF_13_28.IsEnabled());
  381.                 oMF_SCDW_PIC_13_40.Enable(not oMF_SCDW_PIC_13_40.IsEnabled());
  382.                 oMF_SCUP_PIC_13_39.Enable(not oMF_SCUP_PIC_13_39.IsEnabled());
  383.                 oMF_SCMI_PIC_13_42.Enable(not oMF_SCMI_PIC_13_42.IsEnabled());
  384.                 oMF_PRNT_PIC_13_38.Enable(not oMF_PRNT_PIC_13_38.IsEnabled());
  385.             end;
  386.         
  387.         MouseUp(theTarget, theX, theY)
  388.             do
  389.                 theTarget.Show(true);
  390.                 oExplain_Inverse_13_24.Show(false);
  391.                 oBinder.Refresh();
  392.                 oClick_Sound__Up__13_15.Run(true);
  393.             end;
  394.         
  395.     with
  396.         Enabled is true; Shown is true; 
  397.         X is 289; Y is 427; Width is 87; Height is 53;
  398.     end;
  399. end;
  400.  
  401.  
  402. object oMenu_Yellow_Highlight_13_21 is cPictureHandler
  403. with
  404.     Duration is -1;
  405.     Supplier is oS2_MNUYH_PIC;
  406.     Behavior is cDefaultBehavior
  407.     has
  408.         Offscreen(theTarget)
  409.             do
  410.                 theTarget.Show(false);
  411.             end;
  412.         
  413.         MouseEnter(theTarget, theX, theY)
  414.             do
  415.                 theTarget.Show(true);
  416.             end;
  417.         
  418.         MouseLeave(theTarget, theX, theY)
  419.             do
  420.                 theTarget.Show(false);
  421.             end;
  422.         
  423.         MouseDown(theTarget, theX, theY)
  424.             do
  425.                 theTarget.Show(false);
  426.                 oMenu_Inverse_13_25.Show(true);
  427.                 -- Turn off the spining cursor, if there is one
  428.                 if oBinder.MouseSpin<>void then
  429.                     if oBinder.MouseSpin.IsRunning() then
  430.                         oBinder.MouseSpin.Stop();
  431.                     end;
  432.                     oBinder.MouseSpin := void;
  433.                 end;
  434.                 theTarget.Container.OverrideCursor := true;
  435.                 oBinder.MouseSpin := oHandSpin;
  436.                 if (oBinder.MouseSpin @ 1).Data=void then
  437.                     oBinder.MouseSpin.EachUp(Load);
  438.                 end;
  439.                 if not oBinder.MouseSpin.IsRunning() then
  440.                     oBinder.MouseSpin.Start();
  441.                 end;
  442.                 oBinder.Refresh();
  443.                 oClick_Sound__down__13_16.Run(true);
  444.             end;
  445.         
  446.         MouseUp(theTarget, theX, theY)
  447.             do
  448.                 theTarget.Show(true);
  449.                 oMenu_Inverse_13_25.Show(false);
  450.                 -- Turn off the spining cursor, if there is one
  451.                 if oBinder.MouseSpin<>void then
  452.                     if oBinder.MouseSpin.IsRunning() then
  453.                         oBinder.MouseSpin.Stop();
  454.                     end;
  455.                     oBinder.MouseSpin := void;
  456.                 end;
  457.                 theTarget.Container.OverrideCursor := false;
  458.                 oBinder.Refresh();
  459.                 oClick_Sound__Up__13_15.Run(true);
  460.                 oBinder.Goto(oMain_Menu_1);
  461.                 oBinder.SetTransition(oWipeRight, 30);
  462.             end;
  463.         
  464.     with
  465.         Enabled is true; Shown is true; 
  466.         X is 163; Y is 427; Width is 126; Height is 53;
  467.     end;
  468. end;
  469.  
  470.  
  471. object oArrow_Left_Inverse_13_22 is cPictureHandler
  472. with
  473.     Duration is -1;
  474.     Supplier is oS2_ALI_PIC;
  475.     Behavior is cDefaultBehavior
  476.     has
  477.         Offscreen(theTarget)
  478.             do
  479.                 theTarget.Show(false);
  480.                 theTarget.Enable(false);
  481.             end;
  482.         
  483.     with
  484.         Enabled is true; Shown is true; 
  485.         X is 381; Y is 441; Width is 51; Height is 40;
  486.     end;
  487. end;
  488.  
  489.  
  490. object oArrow_Right_Inverse_13_23 is cPictureHandler
  491. with
  492.     Duration is -1;
  493.     Supplier is oS2_ARI_PIC;
  494.     Behavior is cDefaultBehavior
  495.     has
  496.         Offscreen(theTarget)
  497.             do
  498.                 theTarget.Show(false);
  499.                 theTarget.Enable(false);
  500.             end;
  501.         
  502.     with
  503.         Enabled is true; Shown is true; 
  504.         X is 477; Y is 438; Width is 50; Height is 42;
  505.     end;
  506. end;
  507.  
  508.  
  509. object oExplain_Inverse_13_24 is cPictureHandler
  510. with
  511.     Duration is -1;
  512.     Supplier is oS2_EXI_PIC;
  513.     Behavior is cDefaultBehavior
  514.     has
  515.         Offscreen(theTarget)
  516.             do
  517.                 theTarget.Show(false);
  518.                 theTarget.Enable(false);
  519.             end;
  520.         
  521.     with
  522.         Enabled is true; Shown is true; 
  523.         X is 291; Y is 438; Width is 87; Height is 43;
  524.     end;
  525. end;
  526.  
  527.  
  528. object oMenu_Inverse_13_25 is cPictureHandler
  529. with
  530.     Duration is -1;
  531.     Supplier is oS2_MNUI_PIC;
  532.     Behavior is cDefaultBehavior
  533.     has
  534.         Offscreen(theTarget)
  535.             do
  536.                 theTarget.Show(false);
  537.                 theTarget.Enable(false);
  538.             end;
  539.         
  540.     with
  541.         Enabled is true; Shown is true; 
  542.         X is 167; Y is 438; Width is 123; Height is 43;
  543.     end;
  544. end;
  545.  
  546.  
  547. object oMF_MIAM_PIC_13_26 is cPictureScrollerHandler
  548. with
  549.     Duration is -1;
  550.     VScrollbar is false;
  551.     HScrollbar is false;
  552.     
  553.     ScrollX is 0;
  554.     ScrollY is 0;
  555.     Supplier is oMF_MIAM_PIC;
  556.     Behavior is cDefaultBehavior
  557.     has
  558.     with
  559.         Enabled is false; Shown is true; 
  560.         X is 302; Y is 4; Width is 336; Height is 312;
  561.     end;
  562. end;
  563.  
  564.  
  565. object oMF_SOFL_RTF_13_28 is cTextScrollerHandler
  566. with
  567.     Red is 255; Green is 255; Blue is 255;
  568.     Duration is -1;
  569.     Transparent is true;
  570.     Margin is 8;
  571.     Supplier is oMF_SOFL_RTF;
  572.     Behavior is cDefaultBehavior
  573.     has
  574.     with
  575.         Enabled is true; Shown is true; 
  576.         X is 176; Y is 317; Width is 346; Height is 101;
  577.     end;
  578. end;
  579.  
  580.  
  581. object oMF_SCDW_PIC_13_40 is cPictureHandler
  582. with
  583.     Duration is -1;
  584.     Supplier is oMF_SCDW_PIC;
  585.     Behavior is cDefaultBehavior
  586.     has
  587.         MouseDown(theTarget, theX, theY)
  588.             do
  589.                 oMF_MIAM_PIC_13_26.ScrollBy(0, -60);
  590.             end;
  591.         
  592.         MouseEnter(theTarget, theX, theY)
  593.             do
  594.                 theTarget.Show(true);
  595.             end;
  596.         
  597.         MouseLeave(theTarget, theX, theY)
  598.             do
  599.                 theTarget.Show(false);
  600.             end;
  601.         
  602.     with
  603.         Enabled is true; Shown is false; 
  604.         X is 173; Y is 248; Width is 122; Height is 16;
  605.     end;
  606. end;
  607.  
  608.  
  609. object oMF_SCUP_PIC_13_39 is cPictureHandler
  610. with
  611.     Duration is -1;
  612.     Supplier is oMF_SCUP_PIC;
  613.     Behavior is cDefaultBehavior
  614.     has
  615.         MouseDown(theTarget, theX, theY)
  616.             do
  617.                 oMF_MIAM_PIC_13_26.ScrollBy(0, 60);
  618.             end;
  619.         
  620.         MouseEnter(theTarget, theX, theY)
  621.             do
  622.                 theTarget.Show(true);
  623.             end;
  624.         
  625.         MouseLeave(theTarget, theX, theY)
  626.             do
  627.                 theTarget.Show(false);
  628.             end;
  629.         
  630.     with
  631.         Enabled is true; Shown is false; 
  632.         X is 192; Y is 265; Width is 104; Height is 16;
  633.     end;
  634. end;
  635.  
  636.  
  637. object oMF_SCMI_PIC_13_42 is cPictureHandler
  638. with
  639.     Duration is -1;
  640.     Supplier is oMF_SCMI_PIC;
  641.     Behavior is cDefaultBehavior
  642.     has
  643.         MouseDown(theTarget, theX, theY)
  644.             do
  645.                 oMF_MIAM_PIC_13_26.ScrollTo(0, -1024);
  646.             end;
  647.         
  648.         MouseEnter(theTarget, theX, theY)
  649.             do
  650.                 theTarget.Show(true);
  651.             end;
  652.         
  653.         MouseLeave(theTarget, theX, theY)
  654.             do
  655.                 theTarget.Show(false);
  656.             end;
  657.         
  658.     with
  659.         Enabled is true; Shown is false; 
  660.         X is 174; Y is 281; Width is 108; Height is 12;
  661.     end;
  662. end;
  663.  
  664.  
  665. object oMF_PRNT_PIC_13_38 is cPictureHandler
  666. with
  667.     Duration is -1;
  668.     Supplier is oMF_PRNT_PIC;
  669.     Behavior is cDefaultBehavior
  670.     has
  671.         MouseDown(theTarget, theX, theY)
  672.             do
  673.                 oMF_SOFL_RTF_13_28.Print();
  674.             end;
  675.         
  676.         MouseEnter(theTarget, theX, theY)
  677.             do
  678.                 theTarget.Show(true);
  679.             end;
  680.         
  681.         MouseLeave(theTarget, theX, theY)
  682.             do
  683.                 theTarget.Show(false);
  684.             end;
  685.         
  686.     with
  687.         Enabled is true; Shown is false; 
  688.         X is 197; Y is 301; Width is 74; Height is 14;
  689.     end;
  690. end;
  691.  
  692.  
  693. object oMF_HLP2_PIC_13_43 is cPictureHandler
  694. with
  695.     Duration is -1;
  696.     Supplier is oMF_HLP2_PIC;
  697.     Behavior is cDefaultBehavior
  698.     has
  699.     with
  700.         Enabled is false; Shown is false; 
  701.         X is 173; Y is 0; Width is 467; Height is 426;
  702.     end;
  703. end;
  704.  
  705.